Function: icalendar-date-time<=

icalendar-date-time<= is a byte-compiled function defined in icalendar-utils.el.gz.

Signature

(icalendar-date-time<= DT1 DT2)

Documentation

Return non-nil if DT1 is earlier than, or simultaneous with, DT2.

DT1 and DT2 must both be decoded times, and either both or neither must have time zone information.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-utils.el.gz
(defun ical:date-time<= (dt1 dt2)
  "Return non-nil if DT1 is earlier than, or simultaneous with, DT2.
DT1 and DT2 must both be decoded times, and either both or neither must have
time zone information."
  (or (ical:date-time< dt1 dt2)
      (ical:date-time-simultaneous-p dt1 dt2)))